home *** CD-ROM | disk | FTP | other *** search
/ Practical Algorithms for Image Analysis / Practical Algorithms for Image Analysis.iso / TARFILE.GZ / tarfile / ch_3.5 / bcd / edge / Makefile < prev    next >
Encoding:
Makefile  |  1999-09-11  |  808 b   |  47 lines

  1. CC = cc
  2. #CFLAGS = -g -DDEBUG -f68881 #for debugging
  3. #CFLAGS = -O4 # for sun4
  4. #CFLAGS = -O -f68881 #for sun3
  5. CFLAGS = -O3 # Silicon Graphics
  6. CLIBS = -lm
  7. OBJECTS = conv.o ctor.o det.o dtor.o edge_maps.o filter.o \
  8.             find_edges.o  hyst.o loc.o thin.o thld.o write.o
  9.  
  10. bcd: bcd.o $(OBJECTS)
  11.     $(CC) -o bcd $(CFLAGS) bcd.o $(OBJECTS) $(CLIBS)
  12.  
  13. bcd.o: edge_finder.h
  14.  
  15. cb.o: edge_finder.h
  16.  
  17. conv.o: edge_finder.h
  18.  
  19. ctor.o: edge_finder.h
  20.  
  21. det.o: edge_finder.h
  22.  
  23. dtor.o: edge_finder.h
  24.  
  25. edge_maps.o: edge_finder.h
  26.  
  27. filter.o: edge_finder.h
  28.  
  29. find_edges.o: edge_finder.h
  30.  
  31. hyst.o: edge_finder.h
  32.  
  33. loc.o: edge_finder.h
  34.  
  35. thin.o: edge_finder.h
  36.  
  37. thld.o: edge_finder.h
  38.  
  39. write.o: edge_finder.h
  40.  
  41. clean:
  42.     rm *.o
  43.  
  44. cleanimages:
  45.     rm det135 det45 detx dety map thin_map hyst_map hi_map gauss
  46.     
  47.